home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.lang.c++
- Path: netcom.com!jhalpin
- From: jhalpin@netcom.com (Joe Halpin)
- Subject: Re: HELP: I need RWTPtrSlist< myTemplate<T>>
- Message-ID: <jhalpinDLELJy.AIt@netcom.com>
- Organization: Netcom Online Communications Services (408-241-9760 login: guest)
- References: <4dmid0$o2m@gateway.comsearch.com>
- Date: Fri, 19 Jan 1996 01:02:22 GMT
- Sender: jhalpin@netcom5.netcom.com
-
- In article <4dmid0$o2m@gateway.comsearch.com> Thuan Nguyen <thnguyen@comsearch.com> writes:
- >I have a template class that will be used in a link list template. As a result.
- >My declaration for link list end up:
- >
- >template <class listType>
- >class myTemplate
- >{
- >}
- >
- >template <class listType>
- >class store_list
- >{
- > RWTPtrSlist< myTemplate<listType>> _mylist; // link list
- >}
- >
- >Compiler doesnt like this. Is there anyway I can get around this ??
- >
- >Thanks
- >
-
- Try
-
- RWTPtrSlist< myTemplate<listType> > _mylist; // link list
- ^
- |
- +-- note space
-
- Joe
-